home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / misc / math / MathFX_src.lha / fxpoi1.c < prev    next >
C/C++ Source or Header  |  1995-12-20  |  249b  |  17 lines

  1. #include "mathfx.h"
  2.  
  3. extern short int *hersh[];
  4.  
  5. void fxpoi1(x,y,code)
  6. float x,y;
  7. int code;
  8. {
  9.       int sym, font, col;
  10.  
  11. /* Initialize parameters. */
  12.  
  13.       gatt(&font,&col);
  14.       sym = *(hersh[font-1]+code);
  15.       fxhrsh(sym,wcpcx(x),wcpcy(y));
  16. }
  17.